crypto/cipher.gcmFieldElement.high (field)
18 uses
crypto/cipher (current package)
gcm.go#L65: low, high uint64
gcm.go#L256: return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
gcm.go#L261: msbSet := x.high&1 == 1
gcm.go#L264: double.high = x.high >> 1
gcm.go#L265: double.high |= x.low << 63
gcm.go#L292: word := y.high
gcm.go#L300: msw := z.high & 0xf
gcm.go#L301: z.high >>= 4
gcm.go#L302: z.high |= z.low << 60
gcm.go#L312: z.high ^= t.high
gcm.go#L325: y.high ^= byteorder.BeUint64(blocks[8:])
gcm.go#L402: y.high ^= uint64(len(nonce)) * 8
gcm.go#L405: byteorder.BePutUint64(counter[8:], y.high)
gcm.go#L417: y.high ^= uint64(len(ciphertext)) * 8
gcm.go#L422: byteorder.BePutUint64(out[8:], y.high)
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |